Skip to content
#

Compiler

Compilers are software that translate higher-level (more human readable) programming languages to lower-level languages (e.g. machine code). The processor executes machine code, which indicates when binary high and low signals are required in the arithmetic logic unit of the processor. Examples of compiled languages include BASIC, Fortran, C++, C, and Java.

Here are 5,981 public repositories matching this topic...

next.js
ScriptedAlchemy
ScriptedAlchemy commented Aug 19, 2021

What version of Next.js are you using?

11.1.0

What version of Node.js are you using?

14

What browser are you using?

chrome

What operating system are you using?

macOS

How are you deploying your application?

Other (serverless aws)

Describe the Bug

When importing images into _document next does not emit these image assets into the client build.

For example, I

A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.

  • Updated Sep 12, 2021
  • JavaScript
svelte
henriquez
henriquez commented May 31, 2020

Describe the bug
I'm using rollup to bundle dependencies (for a Svelte framework web app) but having trouble importing and using markedjs. It appears the library was recently ported to ESM modules, but I don't see any documentation on how to use as such. The standard syntax to import ES6 modules give me errors:

import { marked } from 'marked.esm';
returns
(!) Unresolved dependencies

assemblyscript
Nim
numba
rhjmoore
rhjmoore commented Sep 1, 2021

I see comments suggesting adding this to understand how loops are being handled by numba, and in the their own FAQ (https://numba.pydata.org/numba-doc/latest/user/faq.html)

from llvmlite import binding as llvm
llvm.set_option('','--debug-only=loop-vectorize')

You would then create your njit function and run it, and I believe the idea is that it prints debug information about whether