Skip to content

Commit babdda6

Browse files
committedDec 17, 2020
init
0 parents  commit babdda6

File tree

104 files changed

+78469
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+78469
-0
lines changed
 

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/result*
2+
/.cache/
3+
/node_modules

‎.storybook/main.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
module.exports = {
2+
"stories": [
3+
"../stories/**/*.stories.mdx",
4+
"../stories/**/*.stories.@(js|jsx|ts|tsx)"
5+
],
6+
"addons": [
7+
"@storybook/addon-links",
8+
"@storybook/addon-essentials"
9+
],
10+
"webpackFinal": async (config, {configType}) => {
11+
// `configType` has a value of 'DEVELOPMENT' or 'PRODUCTION'
12+
// You can change the configuration based on that.
13+
// 'PRODUCTION' is used when building the static version of storybook.
14+
15+
16+
// LESS
17+
config.module.rules.push({
18+
test: /\.less$/,
19+
use: ['style-loader', 'css-loader', 'less-loader'],
20+
});
21+
config.resolve.extensions.push(".less");
22+
23+
return config;
24+
}
25+
}

0 commit comments

Comments
 (0)