83 lines
1.9 KiB
JavaScript
83 lines
1.9 KiB
JavaScript
const HtmlWebpackPlugin = require("html-webpack-plugin");
|
|
const FileManagerPlugin = require("filemanager-webpack-plugin");
|
|
const path = require("path");
|
|
const fs = require("fs");
|
|
|
|
const pagesDir = path.join(__dirname, "src", "pages");
|
|
const pages = fs.readdirSync(pagesDir).filter(file => file.endsWith(".pug"));
|
|
|
|
module.exports = {
|
|
output: {
|
|
path: path.join(__dirname, "dist"),
|
|
filename: "index.[contenthash].js",
|
|
assetModuleFilename: path.join("images", "[name].[contenthash][ext]"),
|
|
},
|
|
entry: path.join(__dirname, "src", "index.js"),
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.pug$/,
|
|
loader: "pug-loader",
|
|
},
|
|
{
|
|
test: /\.(png|jpg|jpeg|gif)$/i,
|
|
type: "asset/resource",
|
|
},
|
|
{
|
|
test: /\.svg$/,
|
|
type: "asset/resource",
|
|
generator: {
|
|
filename: path.join("icons", "[name].[contenthash][ext]"),
|
|
},
|
|
},
|
|
{
|
|
test: /\.styl$/,
|
|
use: [
|
|
{
|
|
loader: "style-loader",
|
|
},
|
|
{
|
|
loader: "css-loader",
|
|
},
|
|
{
|
|
loader: "stylus-loader",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
...pages.map(
|
|
(page) =>
|
|
new HtmlWebpackPlugin({
|
|
template: path.join(pagesDir, page),
|
|
filename: page.replace(".pug", ".html"),
|
|
})
|
|
),
|
|
new FileManagerPlugin({
|
|
events: {
|
|
onStart: {
|
|
delete: ["dist"],
|
|
},
|
|
onEnd: {
|
|
copy: [
|
|
{
|
|
source: path.join(__dirname, "src", "pages", "table", "*.js"),
|
|
destination: path.join(__dirname, "dist", "table"),
|
|
},
|
|
],
|
|
},
|
|
},
|
|
}),
|
|
],
|
|
devServer: {
|
|
watchFiles: path.join(__dirname, "src"),
|
|
port: 9000,
|
|
static: {
|
|
directory: path.join(__dirname, "src", "pages"),
|
|
publicPath: "/",
|
|
watch: true,
|
|
},
|
|
},
|
|
};
|