Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

import.meta.dirname + import.meta.filename undefined in page #60879

Open
1 task done
karlhorky opened this issue Jan 19, 2024 · 10 comments
Open
1 task done

import.meta.dirname + import.meta.filename undefined in page #60879

karlhorky opened this issue Jan 19, 2024 · 10 comments
Labels
bug Issue was opened via the bug report template. linear: turbopack Confirmed issue that is tracked by the Turbopack team. Upstream Related to using Next.js with a third-party dependency. (e.g., React, UI/icon libraries, etc.).

Comments

@karlhorky
Copy link
Contributor

karlhorky commented Jan 19, 2024

Link to the code that reproduces this issue

https://codesandbox.io/p/devbox/import-meta-dirname-reproduction-vj3gfq?file=%2Fapp%2Fpage.tsx%3A1%2C1

To Reproduce

  1. Open the reproduction
  2. Observe import.meta.dirname is undefined in the webpack-compiled page.tsx (but is a dir path in Node.js)

Screenshot 2024-01-19 at 11 45 54

Changes to repro template:

  • upgrade to Node.js 20.11.0 via dev container config
  • switch to "type": "module" to enable running ESM with Node.js (and change module.exports = to export default in next.config.js)
  • add file import-meta.dirname.js with console.log() of import.meta.dirname
  • add console.log() of import.meta.dirname to app/page.tsx

Current vs. Expected behavior

I expected import.meta.dirname and import.meta.filename, introduced in Node.js 20.11.0 to not be undefined in Next.js pages in the App Router, but it is undefined

Verify canary release

  • I verified that the issue exists in the latest Next.js canary release

Provide environment information

Operating System:
  Platform: linux
  Arch: x64
  Version: #1 SMP PREEMPT_DYNAMIC Sun Aug  6 20:05:33 UTC 2023
Binaries:
  Node: 20.11.0
  npm: 10.2.4
  Yarn: 1.22.19
  pnpm: 8.14.1
Relevant Packages:
  next: 14.1.1-canary.1
  eslint-config-next: N/A
  react: 18.2.0
  react-dom: 18.2.0
  typescript: 5.1.3
Next.js Config:
  output: N/A

Which area(s) are affected? (Select all that apply)

Module resolution (CJS / ESM, module resolving)

Which stage(s) are affected? (Select all that apply)

next dev (local), next build (local)

Additional context

No response

PACK-2953

@karlhorky karlhorky added the bug Issue was opened via the bug report template. label Jan 19, 2024
@github-actions github-actions bot added the Module Resolution Module resolution (CJS / ESM, module resolving) label Jan 19, 2024
@karlhorky karlhorky changed the title import.meta.dirname and import.meta.filename from Node.js 20.11.0 not present in webpack bundled page import.meta.dirname + import.meta.filename not present in webpack bundled page Jan 19, 2024
@karlhorky
Copy link
Contributor Author

cc @alexander-akait if I should open an issue in https://github.com/webpack/webpack, let me know and I'll do that.

@karlhorky karlhorky changed the title import.meta.dirname + import.meta.filename not present in webpack bundled page import.meta.dirname + import.meta.filename not present in page Jan 19, 2024
@alexander-akait
Copy link
Contributor

@karlhorky Yeah, to be honestly it is already in my internal roadmap 😄

@karlhorky
Copy link
Contributor Author

Ok, then I'll just leave it open here.

@karlhorky
Copy link
Contributor Author

karlhorky commented Jan 19, 2024

Workaround

Configure the DefinePlugin to alias import.meta.dirname to __dirname, similar to webpack/webpack#1599 (comment):

/** @type {import("next").NextConfig} */
const nextConfig = {
  reactStrictMode: true,
  webpack: (
    config,
    { buildId, dev, isServer, defaultLoaders, nextRuntime, webpack },
  ) => {
    config.plugins.push(
      new webpack.DefinePlugin({
        "import.meta.dirname": "__dirname",
      }),
    );
    return config;
  },
};

export default nextConfig;

CodeSandbox demo: https://codesandbox.io/p/devbox/import-meta-dirname-reproduction-forked-4ldmgw?file=%2Fnext.config.js%3A3%2C25

Screenshot 2024-01-19 at 12 14 13

@huozhi huozhi added Upstream Related to using Next.js with a third-party dependency. (e.g., React, UI/icon libraries, etc.). and removed Module Resolution Module resolution (CJS / ESM, module resolving) labels Jan 19, 2024
@huozhi
Copy link
Member

huozhi commented Jan 19, 2024

@alexander-akait let us know when it's landed in webpack, would love to help bump webpack in next.js for this later 🙏

@karlhorky karlhorky changed the title import.meta.dirname + import.meta.filename not present in page import.meta.dirname + import.meta.filename undefined in page Jan 19, 2024
@kachkaev
Copy link
Contributor

kachkaev commented Apr 7, 2024

I just upgraded to Node 20, used import.meta.dirname, ran unit tests and all worked there. TypeScript linter did not complain as well, so I committed and pushed. Surprisingly, next build in CI failed because of this issue and it took me a few minutes to understand the cause. Next.js is about DX, so it’d be great to see import.meta.dirname / import.meta.filename to Just Work™

How hard would it be to add @karlhorky’s workaround in the meantime?

@kachkaev
Copy link
Contributor

kachkaev commented Apr 11, 2024

Looks like turbopack does not know about import.meta.dirname and import.meta.filename too. They return undefined in next dev --turbo as of v 14.2.0.

And because webpack config is ignored by --turbo, we can no longer leverage webpack.DefinePlugin({...}) as a workaround. It’d be cool to use these two little shorthands because they are natively supported by Node 20.

@timneutkens timneutkens added the linear: turbopack Confirmed issue that is tracked by the Turbopack team. label Apr 13, 2024
@karlhorky
Copy link
Contributor Author

@alexander-akait if you haven't gotten around to implementing yet, what do you think about me creating a tracking issue in the webpack repo?

@karlhorky
Copy link
Contributor Author

karlhorky commented Aug 27, 2024

Ah wait, looks like there maybe is one already...? Looks like the issue started as some other topic, but now is about general import.meta.dirname and import.meta.filename support:

@alexander-akait
Copy link
Contributor

@karlhorky Yeah, it is an issue about it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Issue was opened via the bug report template. linear: turbopack Confirmed issue that is tracked by the Turbopack team. Upstream Related to using Next.js with a third-party dependency. (e.g., React, UI/icon libraries, etc.).
Projects
None yet
Development

No branches or pull requests

5 participants