@pure-ds/storybook 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.storybook/main.js
CHANGED
|
@@ -144,8 +144,8 @@ const config = {
|
|
|
144
144
|
if (fs.existsSync(userConfigPath)) {
|
|
145
145
|
config.resolve.alias['@user/pds-config'] = userConfigPath;
|
|
146
146
|
} else {
|
|
147
|
-
// Fallback to a
|
|
148
|
-
config.resolve.alias['@user/pds-config'] =
|
|
147
|
+
// Fallback to a default config file if user config doesn't exist
|
|
148
|
+
config.resolve.alias['@user/pds-config'] = resolve(currentDirname, '../default-pds.config.js');
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
// Set base path for production builds
|