mirror of
https://github.com/coder/coder.git
synced 2025-07-12 00:14:10 +00:00
fix: storybook should use absolute paths (#3119)
This commit is contained in:
@ -35,7 +35,7 @@ module.exports = {
|
||||
//
|
||||
// SEE: https://storybook.js.org/docs/react/configure/webpack
|
||||
webpackFinal: async (config) => {
|
||||
config.resolve.modules = [path.resolve(__dirname, ".."), "node_modules"]
|
||||
config.resolve.modules = [path.resolve(__dirname, ".."), "node_modules", "../src"]
|
||||
return config
|
||||
},
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
import Button from "@material-ui/core/Button"
|
||||
import RefreshIcon from "@material-ui/icons/Refresh"
|
||||
import { Stack } from "components/Stack/Stack"
|
||||
import { FC } from "react"
|
||||
import { Stack } from "../Stack/Stack"
|
||||
|
||||
const Language = {
|
||||
retryMessage: "Retry",
|
||||
|
Reference in New Issue
Block a user