mirror of
https://github.com/wanglin2/mind-map.git
synced 2026-02-17 22:08:25 +08:00
15 lines
307 B
JavaScript
15 lines
307 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
publicPath: './dist',
|
|
outputDir: '../dist',
|
|
lintOnSave: false,
|
|
productionSourceMap: false,
|
|
configureWebpack: {
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src/')
|
|
}
|
|
}
|
|
}
|
|
} |