83 lines
2.2 KiB
JavaScript
83 lines
2.2 KiB
JavaScript
const path = require('path');
|
|
//const webpack = require('webpack');
|
|
const VueLoaderPlugin = require('vue-loader/lib/plugin');
|
|
|
|
const clientDir = path.resolve(__dirname, '../client');
|
|
|
|
module.exports = {
|
|
resolve: {
|
|
fallback: {
|
|
"url": false,
|
|
"path": false,
|
|
}
|
|
},
|
|
entry: [`${clientDir}/main.js`],
|
|
output: {
|
|
publicPath: '/app/',
|
|
},
|
|
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.vue$/,
|
|
loader: "vue-loader"
|
|
},
|
|
{
|
|
test: /\.includer$/,
|
|
resourceQuery: /^\?vue/,
|
|
use: path.resolve('build/includer.js')
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
loader: 'babel-loader',
|
|
exclude: /node_modules/,
|
|
options: {
|
|
presets: [['@babel/preset-env', { targets: { esmodules: true } }]],
|
|
plugins: [
|
|
['@babel/plugin-proposal-decorators', { legacy: true }]
|
|
]
|
|
}
|
|
/*query: {
|
|
plugins: [
|
|
'syntax-dynamic-import',
|
|
'transform-decorators-legacy',
|
|
'transform-class-properties',
|
|
]
|
|
}*/
|
|
},
|
|
{
|
|
test: /\.gif$/,
|
|
loader: "url-loader",
|
|
options: {
|
|
name: "images/[name]-[hash:6].[ext]"
|
|
}
|
|
},
|
|
{
|
|
test: /\.png$/,
|
|
loader: "url-loader",
|
|
options: {
|
|
name: "images/[name]-[hash:6].[ext]"
|
|
}
|
|
},
|
|
{
|
|
test: /\.jpg$/,
|
|
loader: "file-loader",
|
|
options: {
|
|
name: "images/[name]-[hash:6].[ext]"
|
|
}
|
|
},
|
|
{
|
|
test: /\.(ttf|eot|woff|woff2)$/,
|
|
loader: "file-loader",
|
|
options: {
|
|
name: "fonts/[name]-[hash:6].[ext]"
|
|
}
|
|
},
|
|
]
|
|
},
|
|
|
|
plugins: [
|
|
new VueLoaderPlugin(),
|
|
]
|
|
};
|