Coder Social home page Coder Social logo

Comments (5)

hliyan avatar hliyan commented on April 24, 2024 2

@arunoda ,
I'm having some trouble resolving an alias. storybook version: 1.28.1

./storybook/webpack.config.js resolve block:

  resolve: {
    alias: {
      foo: path.resolve(__dirname, 'bar.js')
    },
    extensions: ['', '.js']
  }

import foo from 'foo'; just doesn't seem to get resolved (undefined). I've verified the file path gets resolved. What am I doing wrong?

from storybook.

arunoda avatar arunoda commented on April 24, 2024 1

@dziamid We had a bug in the latest storybook release. We patched and released a new version. Could you try the latest version (v2.15.1)

from storybook.

arunoda avatar arunoda commented on April 24, 2024

Now we've enabled this. Use version 1.5.0.
See: #64 for more information.

from storybook.

dziamid avatar dziamid commented on April 24, 2024

@hliyan have you resolved it? I'm having the same problem on linux. It does however work on mac without problems.

from storybook.

notgiorgi avatar notgiorgi commented on April 24, 2024

I'm using react-native-web and I want to share stories between web and native, so I have 2 separate configurations for storybook but 1 stories folder.

In stories I need to import storiesOf but import it from either @storybook/react or @storybook/react-native

So I put this in react-native storybook webpack config:

const defaultConfig = require('@storybook/react-native/dist/server/config/webpack.config')
  .default

module.exports = Object.assign(defaultConfig, {
  resolve: Object.assign(defaultConfig.resolve || {}, {
    alias: Object.assign(
      (defaultConfig.resolve && defaultConfig.resolve.alias) || {},
      {
        '@storybook/react': '@storybook/react-native',
      },
    ),
  }),
})

and I'm using import { storiesOf } from '@storybook/react' everywhere in stories

But it still outputs the error, Can't find variable: document which means alias is not working

from storybook.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.