8d81617481
* initial frontend arch satellite account * V3-500 register page
111 lines
2.8 KiB
JavaScript
111 lines
2.8 KiB
JavaScript
var path = require('path');
|
|
var webpack = require('webpack');
|
|
const VueLoaderPlugin = require('vue-loader/lib/plugin');
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
const nodeExternals = require('webpack-node-externals')
|
|
|
|
module.exports = {
|
|
mode: 'development',
|
|
entry: './src/main.ts',
|
|
output: {
|
|
path: path.resolve(__dirname, './dist'),
|
|
publicPath: './dist/',
|
|
filename: 'build.js',
|
|
devtoolModuleFilenameTemplate: '[absolute-resource-path]',
|
|
devtoolFallbackModuleFilenameTemplate: '[absolute-resource-path]'
|
|
},
|
|
plugins: [
|
|
new VueLoaderPlugin(),
|
|
new HtmlWebpackPlugin({
|
|
vue: true,
|
|
template: './index.html',
|
|
filename: path.resolve(__dirname, './dist/public', 'index.html')
|
|
}),
|
|
],
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.vue$/,
|
|
loader: 'vue-loader',
|
|
options: {
|
|
loaders: {
|
|
// Since sass-loader (weirdly) has SCSS as its default parse mode, we map
|
|
// the "scss" and "sass" values for the lang attribute to the right configs here.
|
|
// other preprocessors should work out of the box, no loader config like this necessary.
|
|
'scss': 'vue-style-loader!css-loader!sass-loader',
|
|
'sass': 'vue-style-loader!css-loader!sass-loader?indentedSyntax',
|
|
}
|
|
// other vue-loader options go here
|
|
}
|
|
},
|
|
{
|
|
test: /\.tsx?$/,
|
|
loader: 'ts-loader',
|
|
exclude: /node_modules/,
|
|
options: {
|
|
appendTsSuffixTo: [/\.vue$/],
|
|
}
|
|
},
|
|
{
|
|
test: /\.(png|jpg|gif|svg)$/,
|
|
loader: 'file-loader',
|
|
options: {
|
|
name: 'images/[name].[ext]'
|
|
}
|
|
},
|
|
{
|
|
test: /\.scss$/,
|
|
use: [
|
|
'vue-style-loader',
|
|
'css-loader',
|
|
'sass-loader'
|
|
]
|
|
},
|
|
{
|
|
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
|
|
loader: 'url-loader',
|
|
options: {
|
|
limit: 10000,
|
|
name: 'fonts/[name].[ext]'
|
|
}
|
|
}
|
|
]
|
|
},
|
|
resolve: {
|
|
extensions: ['.ts', '.tsx', '.js', '.vue', '.json'],
|
|
alias: {
|
|
'vue$': 'vue/dist/vue.esm.js',
|
|
'@': path.resolve('src')
|
|
}
|
|
},
|
|
devServer: {
|
|
historyApiFallback: true,
|
|
noInfo: true
|
|
},
|
|
performance: {
|
|
hints: false
|
|
},
|
|
devtool: 'inline-cheap-module-source-map',
|
|
externals: [nodeExternals()]
|
|
}
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports.devtool = '#source-map'
|
|
// http://vue-loader.vuejs.org/en/workflow/production.html
|
|
module.exports.plugins = (module.exports.plugins || []).concat([
|
|
new webpack.DefinePlugin({
|
|
'process.env': {
|
|
NODE_ENV: '"production"'
|
|
}
|
|
}),
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
sourceMap: true,
|
|
compress: {
|
|
warnings: false
|
|
}
|
|
}),
|
|
new webpack.LoaderOptionsPlugin({
|
|
minimize: true
|
|
})
|
|
])
|
|
} |