mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
109 lines
3.3 KiB
JavaScript
109 lines
3.3 KiB
JavaScript
import webpack from 'webpack';
|
|
import UglifyJsPlugin from 'uglifyjs-webpack-plugin';
|
|
import Dotenv from 'dotenv-webpack';
|
|
import InterpolateHtmlPlugin from 'react-dev-utils/InterpolateHtmlPlugin';
|
|
import HtmlWebpackPlugin from 'html-webpack-plugin';
|
|
import { managerPath } from '@storybook/core/server';
|
|
import babelLoaderConfig from './babel.prod';
|
|
import { includePaths, excludePaths, loadEnv, nodePaths } from './utils';
|
|
import { getPreviewHeadHtml, getManagerHeadHtml } from '../utils';
|
|
import { version } from '../../../package.json';
|
|
|
|
export default function(configDir) {
|
|
const entries = {
|
|
preview: [require.resolve('./polyfills'), require.resolve('./globals')],
|
|
manager: [require.resolve('./polyfills'), managerPath],
|
|
};
|
|
|
|
const config = {
|
|
bail: true,
|
|
devtool: '#cheap-module-source-map',
|
|
entry: entries,
|
|
output: {
|
|
filename: 'static/[name].[chunkhash].bundle.js',
|
|
// Here we set the publicPath to ''.
|
|
// This allows us to deploy storybook into subpaths like GitHub pages.
|
|
// This works with css and image loaders too.
|
|
// This is working for storybook since, we don't use pushState urls and
|
|
// relative URLs works always.
|
|
publicPath: '',
|
|
},
|
|
plugins: [
|
|
new InterpolateHtmlPlugin(process.env),
|
|
new HtmlWebpackPlugin({
|
|
filename: 'index.html',
|
|
chunks: ['manager'],
|
|
data: {
|
|
managerHead: getManagerHeadHtml(configDir),
|
|
version,
|
|
},
|
|
template: require.resolve('../index.html.ejs'),
|
|
}),
|
|
new HtmlWebpackPlugin({
|
|
filename: 'iframe.html',
|
|
excludeChunks: ['manager'],
|
|
data: {
|
|
previewHead: getPreviewHeadHtml(configDir),
|
|
},
|
|
template: require.resolve('../iframe.html.ejs'),
|
|
}),
|
|
new webpack.DefinePlugin(loadEnv({ production: true })),
|
|
new UglifyJsPlugin({
|
|
parallel: true,
|
|
uglifyOptions: {
|
|
ie8: false,
|
|
mangle: false,
|
|
warnings: false,
|
|
compress: {
|
|
keep_fnames: true,
|
|
},
|
|
output: {
|
|
comments: false,
|
|
},
|
|
},
|
|
}),
|
|
new Dotenv({ silent: true }),
|
|
],
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.jsx?$/,
|
|
loader: require.resolve('babel-loader'),
|
|
query: babelLoaderConfig,
|
|
include: includePaths,
|
|
exclude: excludePaths,
|
|
},
|
|
{
|
|
test: /\.vue$/,
|
|
loader: require.resolve('vue-loader'),
|
|
options: {},
|
|
},
|
|
{
|
|
test: /\.md$/,
|
|
use: [
|
|
{
|
|
loader: require.resolve('html-loader'),
|
|
},
|
|
{
|
|
loader: require.resolve('markdown-loader'),
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
resolve: {
|
|
// Since we ship with json-loader always, it's better to move extensions to here
|
|
// from the default config.
|
|
extensions: ['.js', '.json', '.jsx', '.vue'],
|
|
// Add support to NODE_PATH. With this we could avoid relative path imports.
|
|
// Based on this CRA feature: https://github.com/facebookincubator/create-react-app/issues/253
|
|
modules: ['node_modules'].concat(nodePaths),
|
|
alias: {
|
|
vue$: require.resolve('vue/dist/vue.esm.js'),
|
|
},
|
|
},
|
|
};
|
|
|
|
return config;
|
|
}
|