14 lines
266 B
JavaScript
14 lines
266 B
JavaScript
const { defineConfig } = require("@vue/cli-service");
|
|
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true,
|
|
devServer: {
|
|
host: "localhost",
|
|
},
|
|
pages: {
|
|
index: {
|
|
entry: "src/main.ts",
|
|
title: "Kalender-Gewinnspiel",
|
|
},
|
|
},
|
|
});
|