mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-08-10 14:27:48 +02:00
production webpack file
This commit is contained in:
51
webpack.common.js
Normal file
51
webpack.common.js
Normal file
@ -0,0 +1,51 @@
|
||||
const path = require('path');
|
||||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
const CopyPlugin = require('copy-webpack-plugin');
|
||||
|
||||
module.exports = {
|
||||
entry: {
|
||||
index: path.resolve(__dirname, 'src', 'index.js')
|
||||
},
|
||||
output: {
|
||||
filename: '[name].[contenthash].js',
|
||||
path: path.resolve(__dirname, 'dist/web'),
|
||||
clean: true
|
||||
},
|
||||
module: {
|
||||
rules: [{
|
||||
test: /\.css$/i,
|
||||
use: ['style-loader', 'css-loader']
|
||||
}, {
|
||||
test: /\.(ttf|woff|woff2)$/,
|
||||
use: {
|
||||
loader: 'file-loader',
|
||||
options: {
|
||||
name: '[name].[ext]',
|
||||
outputPath: 'font/'
|
||||
}
|
||||
}
|
||||
}, {
|
||||
test: /\.(jpe?g|png|gif|svg)$/i,
|
||||
use: [{
|
||||
loader: 'file-loader',
|
||||
}]
|
||||
}]
|
||||
},
|
||||
plugins: [
|
||||
new HtmlWebpackPlugin({
|
||||
template: './src/index.html'
|
||||
}),
|
||||
new CopyPlugin({
|
||||
patterns: [{
|
||||
from: './src/manifest.json',
|
||||
to: './manifest.json'
|
||||
}, {
|
||||
from: './src/icon/',
|
||||
to: './icon/'
|
||||
}, {
|
||||
from: './src/initialBackground.js',
|
||||
to: './initialBackground.js'
|
||||
}]
|
||||
})
|
||||
]
|
||||
};
|
Reference in New Issue
Block a user