mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Merge pull request #20092 from storybookjs/valentin/add-next-12-sandbox
Add Next 12 sandbox
This commit is contained in:
commit
06910f28c4
@ -611,25 +611,25 @@ workflows:
|
||||
jobs:
|
||||
- build
|
||||
- create-sandboxes:
|
||||
parallelism: 25
|
||||
parallelism: 26
|
||||
requires:
|
||||
- build
|
||||
# - smoke-test-sandboxes: # disabled for now
|
||||
# requires:
|
||||
# - create-sandboxes
|
||||
- build-sandboxes:
|
||||
parallelism: 25
|
||||
parallelism: 26
|
||||
requires:
|
||||
- create-sandboxes
|
||||
- test-runner-sandboxes:
|
||||
parallelism: 25
|
||||
parallelism: 26
|
||||
requires:
|
||||
- build-sandboxes
|
||||
- chromatic-sandboxes:
|
||||
parallelism: 25
|
||||
parallelism: 26
|
||||
requires:
|
||||
- build-sandboxes
|
||||
- e2e-sandboxes:
|
||||
parallelism: 25
|
||||
parallelism: 26
|
||||
requires:
|
||||
- build-sandboxes
|
||||
|
@ -3,7 +3,6 @@ import { DefinePlugin } from 'webpack';
|
||||
import { PHASE_DEVELOPMENT_SERVER } from 'next/constants';
|
||||
import findUp from 'find-up';
|
||||
import { pathExists } from 'fs-extra';
|
||||
import dedent from 'ts-dedent';
|
||||
import type { Configuration as WebpackConfig } from 'webpack';
|
||||
import type { NextConfig } from 'next';
|
||||
import { pathToFileURL } from 'node:url';
|
||||
@ -45,13 +44,7 @@ export const resolveNextConfig = async ({
|
||||
const nextConfigFile = nextConfigPath || (await findNextConfigFile(configDir));
|
||||
|
||||
if (!nextConfigFile || (await pathExists(nextConfigFile)) === false) {
|
||||
throw new Error(
|
||||
dedent`
|
||||
Could not find or resolve your Next config file. Please provide the next config file path as a framework option.
|
||||
|
||||
More info: https://github.com/storybookjs/storybook/blob/next/code/frameworks/nextjs/README.md#options
|
||||
`
|
||||
);
|
||||
return {};
|
||||
}
|
||||
|
||||
const nextConfigExport = await import(pathToFileURL(nextConfigFile).href);
|
||||
|
@ -353,6 +353,7 @@ export const daily: TemplateKey[] = [
|
||||
'lit-vite/default-js',
|
||||
'svelte-kit/skeleton-js',
|
||||
'svelte-vite/default-js',
|
||||
'nextjs/12-js',
|
||||
'nextjs/default-js',
|
||||
'preact-webpack5/default-js',
|
||||
];
|
||||
|
Loading…
x
Reference in New Issue
Block a user