mirror of
https://github.com/aelve/guide.git
synced 2024-11-27 10:10:50 +03:00
109 lines
2.3 KiB
JavaScript
109 lines
2.3 KiB
JavaScript
const webpack = require('webpack')
|
|
const path = require('path')
|
|
const { VueLoaderPlugin } = require('vue-loader')
|
|
const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
|
|
const TSLintPlugin = require('tslint-webpack-plugin')
|
|
const { cssLoader, stylusLoader } = require('./style-loader.conf')
|
|
|
|
const { clientPort, ssrPort } = require('./build-config')
|
|
const isDev = process.env.NODE_ENV === 'development'
|
|
|
|
module.exports = {
|
|
mode: isDev ? 'development' : 'production',
|
|
|
|
output: {
|
|
publicPath: isDev
|
|
? `//localhost:${clientPort}/` // Please bind this hostname to 127.0.0.1 when developing.
|
|
: '/'
|
|
},
|
|
|
|
optimization: {},
|
|
|
|
resolve: {
|
|
extensions: ['.js', '.ts'],
|
|
alias: {
|
|
client: path.resolve(__dirname, '../client/')
|
|
}
|
|
},
|
|
|
|
module: {
|
|
rules: [
|
|
cssLoader,
|
|
stylusLoader,
|
|
{
|
|
test: /\.js$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'babel-loader'
|
|
}
|
|
},
|
|
{
|
|
test: /\.tsx?$/,
|
|
use: [
|
|
'babel-loader',
|
|
{
|
|
loader: 'ts-loader',
|
|
options: {
|
|
happyPackMode: true,
|
|
appendTsSuffixTo: [/\.vue$/]
|
|
}
|
|
}
|
|
],
|
|
exclude: /node_modules/
|
|
},
|
|
{
|
|
test: /\.vue$/,
|
|
loader: 'vue-loader'
|
|
},
|
|
{
|
|
test: /\.(jade|pug)$/,
|
|
oneOf: [
|
|
// For vue Jade / Pug template.
|
|
{
|
|
resourceQuery: /^\?vue/,
|
|
use: ['pug-plain-loader']
|
|
},
|
|
|
|
// For Jade / Pug standalone files.
|
|
{
|
|
use: ['pug-loader']
|
|
}
|
|
]
|
|
},
|
|
{
|
|
test: /\.(png|jpg|gif|svg|woff|woff2|eot|ttf)$/,
|
|
use: [
|
|
{
|
|
loader: 'url-loader',
|
|
options: {
|
|
limit: 8192,
|
|
name: 'img/[name].[hash:7].[ext]'
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
|
|
plugins: [
|
|
new webpack.ContextReplacementPlugin(
|
|
/moment[\/\\]locale$/,
|
|
/ru-RU/
|
|
),
|
|
new webpack.DefinePlugin({
|
|
BASE_URL: JSON.stringify(`http://localhost:${ssrPort}`)
|
|
}),
|
|
new FriendlyErrorsPlugin(),
|
|
new VueLoaderPlugin(),
|
|
|
|
new TSLintPlugin({
|
|
files: [
|
|
'./client/**/*.ts',
|
|
'./server/**/*.ts',
|
|
'./client/**/*.tsx',
|
|
'./server/**/*.tsx'
|
|
]
|
|
})
|
|
]
|
|
}
|