123456789101112131415161718 |
- const {
- name,
- } = require('./package.json');
- module.exports = {
- publicPath: `/sagadaping`,
- outputDir: name,
- assetsDir: 'static',
- lintOnSave: false,
- productionSourceMap: false,
-
- devServer: {
- port: 8080,
- https: false,
- hotOnly: false,
-
- }
- }
|