You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
546 B
JavaScript
26 lines
546 B
JavaScript
import path from 'path';
|
|
|
|
export const loaderOneOf = [
|
|
require.resolve('@kkt/loader-less'),
|
|
require.resolve('@kkt/loader-raw')
|
|
];
|
|
|
|
export const moduleScopePluginOpts = [
|
|
path.resolve(process.cwd(), 'README.md')
|
|
];
|
|
|
|
export default (conf, opts, webpack) => {
|
|
conf.output.path = path.resolve(process.cwd(), 'doc');
|
|
const pkg = require(path.resolve(process.cwd(), 'package.json'));
|
|
|
|
// Get the project version.
|
|
conf.plugins.push(
|
|
new webpack.DefinePlugin({
|
|
VERSION: JSON.stringify(pkg.version),
|
|
})
|
|
);
|
|
|
|
return conf;
|
|
}
|
|
|