mirror of
https://github.com/Steffo99/unisteffo.git
synced 2024-11-22 16:04:21 +00:00
26 lines
687 B
JavaScript
26 lines
687 B
JavaScript
// noinspection JSUnusedGlobalSymbols,JSUnusedLocalSymbols
|
|
export default function (config, env, helpers) {
|
|
// noinspection JSUnresolvedVariable
|
|
config.resolve.alias["react"] = "preact/compat";
|
|
// noinspection JSUnresolvedVariable
|
|
config.resolve.alias["react-dom"] = "preact/compat";
|
|
|
|
config.module.rules.push(
|
|
{
|
|
test: /\.nojekyll$/,
|
|
loader: 'file-loader',
|
|
options: {
|
|
name: '.nojekyll'
|
|
}
|
|
}
|
|
);
|
|
config.module.rules.push(
|
|
{
|
|
test: /CNAME$/,
|
|
loader: 'file-loader',
|
|
options: {
|
|
name: 'CNAME'
|
|
}
|
|
}
|
|
);
|
|
};
|