@minnai/create-aura-app 0.0.17 → 0.0.19

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.
@@ -18,6 +18,8 @@ export const resources = {
18
18
  }
19
19
  },
20
20
  keys: {
21
- STOCKS_API_KEY: 'PUT YOUR API KEY HERE'
21
+ // Get a free key at: https://www.alphavantage.co/support/#api-key
22
+ // And put it below!!
23
+ STOCKS_API_KEY: ''
22
24
  }
23
25
  } as const;
@@ -273,10 +273,11 @@ export default {
273
273
  ],
274
274
  resolve: {
275
275
  alias: {
276
- 'react': path.resolve(__dirname, './node_modules/react'),
277
- 'react-dom': path.resolve(__dirname, './node_modules/react-dom'),
276
+ // Allow standard node resolution
277
+ // 'react': path.resolve(__dirname, './node_modules/react'),
278
+ // 'react-dom': path.resolve(__dirname, './node_modules/react-dom'),
278
279
  },
279
- dedupe: ['react', 'react-dom']
280
+ dedupe: ['react', 'react-dom', '@minnai/aura']
280
281
  },
281
282
  server: {
282
283
  port: 5175