-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoi.config.js
79 lines (71 loc) · 1.71 KB
/
poi.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
'use strict';
require('dotenv').config();
const config = require('./server/config');
const path = require('path');
const isProduction = process.env.NODE_ENV === 'production';
const serverUrl = `http://${config.ip}:${config.port}`;
const aliases = {
'@': path.resolve(__dirname, './client')
};
/** @type {import('poi').Config.DevServer} */
const devServer = {
headers: {
'X-Powered-By': 'Webpack DevSever'
},
proxy: {
'/api': { target: serverUrl }
},
// Override using: `npm run dev:client -- --port <number>`
port: 8081,
hot: true,
hotEntries: ['admin', 'main']
};
const extensions = ['.vue'];
/** @type {import('poi').Config.Plugins} */
const plugins = [
'@poi/eslint',
'@poi/bundle-report',
require.resolve('./build/plugins/stats'),
{
resolve: require.resolve('./build/plugins/output-filenames'),
options: {
vendor: {
font: 'assets/fonts/[name].[ext]',
image: 'assets/images/[name].[ext]'
}
}
}, {
resolve: require.resolve('./build/plugins/clean-out-dir'),
options: {
cleanOnceBeforeBuildPatterns: ['**/*', '!.gitkeep']
}
},
require.resolve('./build/plugins/html-version-spec')
];
/** @type {import('poi').Config} */
module.exports = {
pages: {
admin: {
filename: 'admin/index.html',
entry: './client/admin/main.js'
},
main: {
filename: 'index.html',
entry: './client/main/index.js'
}
},
output: {
dir: 'dist',
sourceMap: !isProduction
},
plugins,
chainWebpack(config) {
config.resolve.alias.merge(aliases);
config.resolve.extensions.merge(extensions);
},
envs: {
API_PATH: process.env.API_PATH,
AUTH_JWT_SCHEME: process.env.AUTH_JWT_SCHEME
},
devServer
};